home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / rlib / log2 < prev    next >
Text File  |  1995-01-17  |  284b  |  15 lines

  1. //-------------------------------------------------------------------//
  2.  
  3. //  Syntax:  log2 ( X )
  4.  
  5. //  Description:
  6.  
  7. //  Returns the base 2 logarithm of X
  8.  
  9. //-------------------------------------------------------------------//
  10.  
  11. log2 = function ( X )
  12. {
  13.   return log (X) ./ log (2);
  14. };
  15.